home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / GUICtrlCreateButton.au3 < prev    next >
Text File  |  2006-06-17  |  725b  |  23 lines

  1. #include <GUIConstants.au3>
  2.  
  3. GUICreate("My GUI Button") ; will create a dialog box that when displayed is centered
  4.  
  5. Opt("GUICoordMode",2)
  6. $Button_1 = GUICtrlCreateButton ("Run Notepad",  10, 30, 100)
  7. $Button_2 = GUICtrlCreateButton ( "Button Test",  0, -1)
  8.  
  9. GUISetState ()      ; will display an  dialog box with 2 button
  10.  
  11. ; Run the GUI until the dialog is closed
  12. While 1
  13.     $msg = GUIGetMsg()
  14.     Select
  15.         Case $msg = $GUI_EVENT_CLOSE
  16.             ExitLoop
  17.         Case $msg = $Button_1
  18.             Run('Notepad.exe')    ; Will Run/Open Notepad
  19.         Case $msg = $Button_2
  20.             MsgBox(0, 'Testing', 'Button 2 was pressed')    ; Will demonstrate Button 2 being pressed
  21.     EndSelect
  22. Wend
  23.